home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / gasbridge.gsh < prev    next >
Text File  |  2000-09-09  |  917b  |  32 lines

  1. // defines a normal gasbridge
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_GASBRIDGE_GSH
  8. #define INCLUDED_GASBRIDGE_GSH
  9.  
  10. #include "gasbridge_frag.gsh"
  11.  
  12. ////////////////////////////////////////////////////////////////////////////////////
  13.  
  14. shape Shp_gasbridge
  15. {
  16.        file "objects\gasbridge.rif"
  17.        name "gasbridge"
  18. }
  19.  
  20. role Rol_gasbridge : Rol_PlacedObject
  21. {
  22.     shape                    Shp_gasbridge
  23.     identifier                "gasbridge"
  24.     destructibility            Frg_gasbridge
  25.     destination selectable    yes
  26. }
  27.  
  28. ////////////////////////////////////////////////////////////////////////////////////
  29.  
  30. // end wrapper - for preventing multiple or recursive inclusions
  31. #endif // !INCLUDED_gasbridge_GSH
  32.